home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / mibs / netsnmp / UCD-DLMOD-MIB < prev    next >
Encoding:
Text File  |  2011-01-05  |  3.0 KB  |  125 lines

  1. UCD-DLMOD-MIB DEFINITIONS ::= BEGIN
  2.  
  3. -- Why do we have dlmodNextIndex if the dlmodTable is read-write?
  4. -- What exactly is the dlmodName and dlmodPath?
  5. -- Should there not be a timestamp associated with dlmodError?
  6. -- What exactly do the dlmodStatus enumerations mean?
  7.  
  8. IMPORTS
  9.     OBJECT-TYPE, MODULE-IDENTITY, Integer32    FROM SNMPv2-SMI
  10.     DisplayString                FROM SNMPv2-TC
  11.     ucdExperimental                FROM UCD-SNMP-MIB;
  12.  
  13. ucdDlmodMIB MODULE-IDENTITY
  14.     LAST-UPDATED "200001260000Z"
  15.     ORGANIZATION "University of California, Davis"
  16.     CONTACT-INFO    
  17.     "This mib is no longer being maintained by the University of
  18.      California and is now in life-support-mode and being
  19.      maintained by the net-snmp project.  The best place to write
  20.      for public questions about the net-snmp-coders mailing list
  21.      at net-snmp-coders@lists.sourceforge.net.
  22.  
  23.          postal:   Wes Hardaker
  24.                    P.O. Box 382
  25.                    Davis CA  95617
  26.  
  27.          email:    net-snmp-coders@lists.sourceforge.net
  28.         "
  29.     DESCRIPTION
  30.     "This file defines the MIB objects for dynamic 
  31.      loadable MIB modules."
  32.  
  33.     REVISION     "200001260000Z"
  34.     DESCRIPTION
  35.     "Renamed MIB root object"
  36.  
  37.     REVISION     "9912100000Z"
  38.     DESCRIPTION
  39.     "SMIv2 version converted from older MIB definitions."
  40.     ::= { ucdExperimental 14 }
  41.  
  42. dlmodNextIndex OBJECT-TYPE 
  43.     SYNTAX    Integer32
  44.     MAX-ACCESS    read-only
  45.     STATUS    current
  46.     DESCRIPTION
  47.     "The index number of next appropiate unassigned entry
  48.      in the dlmodTable."
  49.     ::= { ucdDlmodMIB 1 }
  50.  
  51. dlmodTable OBJECT-TYPE 
  52.     SYNTAX    SEQUENCE OF DlmodEntry
  53.     MAX-ACCESS    not-accessible
  54.     STATUS    current
  55.     DESCRIPTION
  56.     "A table of dlmodEntry."
  57.     ::= { ucdDlmodMIB 2 }
  58.  
  59. dlmodEntry OBJECT-TYPE
  60.     SYNTAX    DlmodEntry
  61.     MAX-ACCESS    not-accessible
  62.     STATUS    current
  63.     DESCRIPTION
  64.     "The parameters of dynamically loaded MIB module."
  65.     INDEX    { dlmodIndex }
  66.     ::= { dlmodTable 1 }
  67.  
  68. DlmodEntry ::= SEQUENCE {
  69.     dlmodIndex    Integer32,
  70.     dlmodName    DisplayString,
  71.     dlmodPath    DisplayString,
  72.     dlmodError    DisplayString,
  73.     dlmodStatus    INTEGER
  74. }
  75.  
  76. dlmodIndex OBJECT-TYPE
  77.     SYNTAX    Integer32 (1..65535)
  78.     MAX-ACCESS    not-accessible
  79.     STATUS    current
  80.     DESCRIPTION
  81.     "An index that uniqely identifies an entry in the dlmodTable."
  82.     ::= { dlmodEntry 1 }
  83.  
  84. dlmodName OBJECT-TYPE
  85.     SYNTAX    DisplayString
  86.     MAX-ACCESS    read-write
  87.     STATUS    current
  88.     DESCRIPTION
  89.     "The module name."
  90.     ::= { dlmodEntry 2 }
  91.  
  92. dlmodPath OBJECT-TYPE
  93.     SYNTAX    DisplayString
  94.     MAX-ACCESS    read-write
  95.     STATUS    current
  96.     DESCRIPTION
  97.     "The path of the module executable file."
  98.     ::= { dlmodEntry 3 } 
  99.  
  100. dlmodError OBJECT-TYPE
  101.     SYNTAX    DisplayString
  102.     MAX-ACCESS    read-only
  103.     STATUS    current
  104.     DESCRIPTION
  105.     "The last error from dlmod_load_module."
  106.     ::= { dlmodEntry 4 }
  107.  
  108. dlmodStatus OBJECT-TYPE
  109.     SYNTAX    INTEGER {
  110.             loaded(1),
  111.             unloaded(2),
  112.             error(3),
  113.             load(4),
  114.             unload(5),
  115.             create(6),
  116.             delete(7)
  117.         }
  118.     MAX-ACCESS    read-write
  119.     STATUS    current
  120.     DESCRIPTION
  121.     "The current status of the loaded module."
  122.     ::= { dlmodEntry 5 }
  123.  
  124. END
  125.